home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_1.3 / Include-Strip1.3 / include.h / hardware / intbits.h < prev   
Encoding:
C/C++ Source or Header  |  1988-07-15  |  851 b   |  36 lines

  1. #ifndef    HARDWARE_INTBITS_H
  2. #define    HARDWARE_INTBITS_H
  3. #define    INTB_SETCLR    (15)
  4. #define    INTB_INTEN    (14)
  5. #define    INTB_EXTER    (13)
  6. #define    INTB_DSKSYNC    (12)
  7. #define    INTB_RBF    (11)
  8. #define    INTB_AUD3    (10)
  9. #define    INTB_AUD2    (9)
  10. #define    INTB_AUD1    (8)
  11. #define    INTB_AUD0    (7)
  12. #define    INTB_BLIT    (6)
  13. #define    INTB_VERTB    (5)
  14. #define    INTB_COPER    (4)
  15. #define    INTB_PORTS    (3)
  16. #define    INTB_SOFTINT    (2)
  17. #define    INTB_DSKBLK    (1)
  18. #define    INTB_TBE    (0)
  19. #define    INTF_SETCLR    (1<<15)
  20. #define    INTF_INTEN    (1<<14)
  21. #define    INTF_EXTER    (1<<13)
  22. #define    INTF_DSKSYNC    (1<<12)
  23. #define    INTF_RBF    (1<<11)
  24. #define    INTF_AUD3    (1<<10)
  25. #define    INTF_AUD2    (1<<9)
  26. #define    INTF_AUD1    (1<<8)
  27. #define    INTF_AUD0    (1<<7)
  28. #define    INTF_BLIT    (1<<6)
  29. #define    INTF_VERTB    (1<<5)
  30. #define    INTF_COPER    (1<<4)
  31. #define    INTF_PORTS    (1<<3)
  32. #define    INTF_SOFTINT    (1<<2)
  33. #define    INTF_DSKBLK    (1<<1)
  34. #define    INTF_TBE    (1<<0)
  35. #endif
  36.